home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
comms
/
other
/
slrn
/
slrn_src
/
src
/
xover.h
< prev
Wrap
C/C++ Source or Header
|
1999-05-14
|
2KB
|
56 lines
#ifndef _SLRN_XOVER_H
#define _SLRN_XOVER_H
/* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
*
* This file is part of slrn.
*
* Slrn is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2, or (at your option) any
* later version.
*
* Slrn is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* along with Slrn; see the file COPYING. If not, write to the Free
* Software Foundation, 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/* In this structure, only subject_malloced will be malloced. All other
* pointers point to a location in that space. It is done this way because
* art.c uses this convention and the pointer can just be passed to it.
*/
typedef struct
{
int id;
char *subject_malloced;
char *from;
char *date;
char *message_id;
char *references;
char *xref;
int bytes;
int lines;
}
Slrn_XOver_Type;
extern char *slrn_get_extra_xover_header (char *);
extern void slrn_map_xover_to_header (Slrn_XOver_Type *, Slrn_Header_Type *);
#ifndef SLRNPULL_CODE
extern int slrn_xover_for_msgid (char *, Slrn_XOver_Type *);
extern int slrn_open_xover (int, int);
extern int slrn_read_xover (Slrn_XOver_Type *);
extern void slrn_close_xover (void);
extern void slrn_open_suspend_xover (void);
extern void slrn_close_suspend_xover (void);
#endif
#endif /* _SLRN_XOVER_H */